From 26ff536069011c9054d7eb7235b4b4409022a910 Mon Sep 17 00:00:00 2001 From: Cosimo Cecchi Date: Tue, 31 Jan 2012 20:18:09 -0500 Subject: [PATCH] combobox: fix cell area allocation in menu mode for RTL We were missing a padding to subtract from the child widget here. --- gtk/gtkcombobox.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk/gtkcombobox.c b/gtk/gtkcombobox.c index a69489c193..d77a06bb17 100644 --- a/gtk/gtkcombobox.c +++ b/gtk/gtkcombobox.c @@ -2610,7 +2610,7 @@ gtk_combo_box_size_allocate (GtkWidget *widget, { child.x += req.width; child.width = allocation->x + allocation->width - - border_width - child.x; + - border_width - child.x - button_padding.right; } else { -- 2.30.2